Skip to content
This repository has been archived by the owner on Sep 1, 2020. It is now read-only.

Latest commit

 

History

History
7 lines (4 loc) · 436 Bytes

3.13.2 - 为什么只能在回调函数中使用协程客户端.md

File metadata and controls

7 lines (4 loc) · 436 Bytes

为什么只能在回调函数中使用协程客户端

因为只有onReceiveonRequest等回调函数中创建了协程,因此只能在这些回调函数的生命周期内使用协程客户端。

但不影响PHP代码对协程客户端进行一些代码封装。

最新的2.0.12版本已经支持用户代码自行创建协程,在不支持协程的回调函数中,可以调用Coroutine::create自行创建协程。